home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / rayshade / graphtal.lzh / Graphtal.Amiga / lex.C < prev    next >
C/C++ Source or Header  |  1992-11-20  |  58KB  |  1,944 lines

  1. /* A lexical scanner generated by flex */
  2.  
  3. /* scanner skeleton version:
  4.  * $Header: /usr/fsys/odin/a/vern/flex/RCS/flex.skel,v 2.16 90/08/03 14:09:36 vern Exp $
  5.  */
  6.  
  7. #define FLEX_SCANNER
  8.  
  9. #include <stdio.h>
  10.  
  11.  
  12. /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
  13. #ifdef c_plusplus
  14. #ifndef __cplusplus
  15. #define __cplusplus
  16. #endif
  17. #endif
  18.  
  19.  
  20. #ifdef __cplusplus
  21.  
  22. #include <stdlib.h>
  23. #ifndef __DECCXX
  24. #include <osfcn.h>
  25. #else
  26. #include <unistd.h>
  27. #endif
  28.  
  29. /* use prototypes in function declarations */
  30. #define YY_USE_PROTOS
  31.  
  32. /* the "const" storage-class-modifier is valid */
  33. #define YY_USE_CONST
  34.  
  35. #else    /* ! __cplusplus */
  36.  
  37. #ifdef __STDC__
  38.  
  39. #include <stdlib.h>
  40.  
  41. #define YY_USE_PROTOS
  42. #define YY_USE_CONST
  43.  
  44. #endif    /* __STDC__ */
  45. #endif    /* ! __cplusplus */
  46.  
  47.  
  48. #ifdef __TURBOC__
  49. #define YY_USE_CONST
  50. #endif
  51.  
  52.  
  53. #ifndef YY_USE_CONST
  54. #define const
  55. #endif
  56.  
  57.  
  58. #ifdef YY_USE_PROTOS
  59. #define YY_PROTO(proto) proto
  60. #else
  61. #define YY_PROTO(proto) ()
  62. /* we can't get here if it's an ANSI C compiler, or a C++ compiler,
  63.  * so it's got to be a K&R compiler, and therefore there's no standard
  64.  * place from which to include these definitions
  65.  */
  66. char *malloc();
  67. int free();
  68. int read();
  69. #endif
  70.  
  71.  
  72. /* amount of stuff to slurp up with each read */
  73. #ifndef YY_READ_BUF_SIZE
  74. #define YY_READ_BUF_SIZE 8192
  75. #endif
  76.  
  77. /* returned upon end-of-file */
  78. #define YY_END_TOK 0
  79.  
  80. /* copy whatever the last rule matched to the standard output */
  81.  
  82. /* cast to (char *) is because for 8-bit chars, yytext is (unsigned char *) */
  83. /* this used to be an fputs(), but since the string might contain NUL's,
  84.  * we now use fwrite()
  85.  */
  86. #define ECHO (void) fwrite( (char *) yytext, yyleng, 1, yyout )
  87.  
  88. /* gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
  89.  * is returned in "result".
  90.  */
  91. #define YY_INPUT(buf,result,max_size) \
  92.     if ( (result = read( fileno(yyin), (char *) buf, max_size )) < 0 ) \
  93.         YY_FATAL_ERROR( "read() in flex scanner failed" );
  94. #define YY_NULL 0
  95.  
  96. /* no semi-colon after return; correct usage is to write "yyterminate();" -
  97.  * we don't want an extra ';' after the "return" because that will cause
  98.  * some compilers to complain about unreachable statements.
  99.  */
  100. #define yyterminate() return ( YY_NULL )
  101.  
  102. /* report a fatal error */
  103.  
  104. /* The funky do-while is used to turn this macro definition into
  105.  * a single C statement (which needs a semi-colon terminator).
  106.  * This avoids problems with code like:
  107.  *
  108.  *     if ( something_happens )
  109.  *        YY_FATAL_ERROR( "oops, the something happened" );
  110.  *    else
  111.  *        everything_okay();
  112.  *
  113.  * Prior to using the do-while the compiler would get upset at the
  114.  * "else" because it interpreted the "if" statement as being all
  115.  * done when it reached the ';' after the YY_FATAL_ERROR() call.
  116.  */
  117.  
  118. #define YY_FATAL_ERROR(msg) \
  119.     do \
  120.         { \
  121.         (void) fputs( msg, stderr ); \
  122.         (void) putc( '\n', stderr ); \
  123.         exit( 1 ); \
  124.         } \
  125.     while ( 0 )
  126.  
  127. /* default yywrap function - always treat EOF as an EOF */
  128. #define yywrap() 1
  129.  
  130. /* enter a start condition.  This macro really ought to take a parameter,
  131.  * but we do it the disgusting crufty way forced on us by the ()-less
  132.  * definition of BEGIN
  133.  */
  134. #define BEGIN yy_start = 1 + 2 *
  135.  
  136. /* action number for EOF rule of a given start state */
  137. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
  138.  
  139. /* special action meaning "start processing a new file" */
  140. #define YY_NEW_FILE \
  141.     do \
  142.         { \
  143.         yy_init_buffer( yy_current_buffer, yyin ); \
  144.         yy_load_buffer_state(); \
  145.         } \
  146.     while ( 0 )
  147.  
  148. /* default declaration of generated scanner - a define so the user can
  149.  * easily add parameters
  150.  */
  151. #define YY_DECL int yylex YY_PROTO(( void )) 
  152.  
  153. /* code executed at the end of each rule */
  154. #define YY_BREAK break;
  155.  
  156. #define YY_END_OF_BUFFER_CHAR 0
  157.  
  158. #ifndef YY_BUF_SIZE
  159. #define YY_BUF_SIZE (YY_READ_BUF_SIZE * 2) /* size of default input buffer */
  160. #endif
  161.  
  162. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  163.  
  164. #define YY_CHAR char
  165. # line 1 "lex.l"
  166. #define INITIAL 0
  167. # line 2 "lex.l"
  168. /*
  169.  * lex.l - lexical analyser for graphtal.
  170.  *
  171.  * Copyright (C) 1992, Christoph Streit (streit@iam.unibe.ch)
  172.  *                     University of Berne, Switzerland
  173.  * All rights reserved.
  174.  *
  175.  * This software may be freely copied, modified, and redistributed
  176.  * provided that this copyright notice is preserved on all copies.
  177.  *
  178.  * You may not distribute this software, in whole or in part, as part of
  179.  * any commercial product without the express consent of the authors.
  180.  *
  181.  * There is no warranty or other guarantee of fitness of this software
  182.  * for any purpose.  It is provided solely "as is".
  183.  *
  184.  */
  185.  
  186. #include <math.h>
  187.  
  188. #include "rcString.h"
  189. #include "LSystem.h"
  190. #include "Value.h"
  191. #include "Hull.h"
  192. #include "yacc.tab.h"
  193. #include "yyerror.h"
  194.  
  195. int lineno = 1;
  196. #define C_COMMENT 1
  197. #define CPP_COMMENT 2
  198. #define EXTFILE 3
  199. # line 42 "lex.l"
  200.  
  201. /* done after the current pattern has been matched and before the
  202.  * corresponding action - sets up yytext
  203.  */
  204. #define YY_DO_BEFORE_ACTION \
  205.     yytext = yy_bp; \
  206.     yyleng = yy_cp - yy_bp; \
  207.     yy_hold_char = *yy_cp; \
  208.     *yy_cp = '\0'; \
  209.     yy_c_buf_p = yy_cp;
  210.  
  211. #define EOB_ACT_CONTINUE_SCAN 0
  212. #define EOB_ACT_END_OF_FILE 1
  213. #define EOB_ACT_LAST_MATCH 2
  214.  
  215. /* return all but the first 'n' matched characters back to the input stream */
  216. #define yyless(n) \
  217.     do \
  218.         { \
  219.         /* undo effects of setting up yytext */ \
  220.         *yy_cp = yy_hold_char; \
  221.         yy_c_buf_p = yy_cp = yy_bp + n; \
  222.         YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  223.         } \
  224.     while ( 0 )
  225.  
  226. #define unput(c) yyunput( c, yytext )
  227.  
  228.  
  229. struct yy_buffer_state
  230.     {
  231.     FILE *yy_input_file;
  232.  
  233.     YY_CHAR *yy_ch_buf;        /* input buffer */
  234.     YY_CHAR *yy_buf_pos;    /* current position in input buffer */
  235.  
  236.     /* size of input buffer in bytes, not including room for EOB characters*/
  237.     int yy_buf_size;    
  238.  
  239.     /* number of characters read into yy_ch_buf, not including EOB characters */
  240.     int yy_n_chars;
  241.  
  242.     int yy_eof_status;        /* whether we've seen an EOF on this buffer */
  243. #define EOF_NOT_SEEN 0
  244.     /* "pending" happens when the EOF has been seen but there's still
  245.      * some text process
  246.      */
  247. #define EOF_PENDING 1
  248. #define EOF_DONE 2
  249.     };
  250.  
  251. static YY_BUFFER_STATE yy_current_buffer;
  252.  
  253. /* we provide macros for accessing buffer states in case in the
  254.  * future we want to put the buffer states in a more general
  255.  * "scanner state"
  256.  */
  257. #define YY_CURRENT_BUFFER yy_current_buffer
  258.  
  259.  
  260. /* yy_hold_char holds the character lost when yytext is formed */
  261. static YY_CHAR yy_hold_char;
  262.  
  263. static int yy_n_chars;        /* number of characters read into yy_ch_buf */
  264.  
  265.  
  266.  
  267. #ifndef YY_USER_ACTION
  268. #define YY_USER_ACTION
  269. #endif
  270.  
  271. #ifndef YY_USER_INIT
  272. #define YY_USER_INIT
  273. #endif
  274.  
  275. extern YY_CHAR *yytext;
  276. extern int yyleng;
  277. extern FILE *yyin, *yyout;
  278.  
  279. YY_CHAR *yytext;
  280. int yyleng;
  281.  
  282. FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
  283.  
  284. #define YY_END_OF_BUFFER 117
  285. typedef int yy_state_type;
  286. static const short int yy_acclist[665] =
  287.     {   0,
  288.       117,  107,  116,  105,  107,  116,  106,  116,   22,  107,
  289.       116,  107,  116,   28,  107,  116,   21,  107,  116,   25,
  290.       107,  116,   11,  107,  116,   12,  107,  116,   19,  107,
  291.       116,   17,  107,  116,    8,  107,  116,   18,  107,  116,
  292.        29,  107,  116,   20,  107,  116,  104,  107,  116,   23,
  293.       107,  116,    9,  107,  116,   39,  107,  116,   10,  107,
  294.       116,   40,  107,  116,  100,  107,  116,16483,  100,  107,
  295.       116,16483,   13,  107,  116,   26,  107,  116,   14,  107,
  296.       116,   24,  107,  116,  100,  107,  116,16483,  100,  107,
  297.       116,16483,  100,  107,  116,16483,  100,  107,  116,16483,
  298.  
  299.       100,  107,  116,16483,  100,  107,  116,16483,  100,  107,
  300.       116,16483,  100,  107,  116,16483,  100,  107,  116,16483,
  301.       100,  107,  116,16483,  100,  107,  116,16483,  100,  107,
  302.       116,16483,  100,  107,  116,16483,  100,  107,  116,16483,
  303.       100,  107,  116,16483,   15,  107,  116,   27,  107,  116,
  304.        16,  107,  116,   30,  107,  116,    1,  107,  116,  111,
  305.       116,  110,  116,  111,  116,  111,  116,  114,  116,  113,
  306.       116,    4,  116,    5,  116,    4,  116,    4,  116,    2,
  307.         4,  116,    3,    4,  116,  105,   36,  101,   33,   32,
  308.        41,  102,    6,    7,  103,  104,   31,   38,   35,   37,
  309.  
  310.       100,16483,  100,16483,  100,16483,  100,16483,  100,16483,
  311.       100,16483,  100,16483,  100,16483,  100,16483,  100,16483,
  312.       100,16483,  100,16483,  100,16483,  100,16483,  100,16483,
  313.       100,16483,  100,16483,   55,  100,16483,  100,16483,  100,
  314.     16483,  100,16483,  100,16483,  100,16483,  100,16483,  100,
  315.     16483,  100,16483,  100,16483,  100,16483,  100,16483,  100,
  316.     16483,  100,16483,  100,16483,   65,  100,16483,   66,  100,
  317.     16483,   67,  100,16483,   85,  100,16483,  100,16483,   34,
  318.       108,  109,    3,    2,    3,    3,  102,  103,  104, 8291,
  319.        59,  100,16483,  100,16483,  100,16483,  100,16483,   48,
  320.  
  321.       100,16483,  100,16483,  100,16483,  100,16483,  100,16483,
  322.       100,16483,  100,16483,  100,16483,   43,  100,16483,  100,
  323.     16483,  100,16483,   50,  100,16483,   83,  100,16483,  100,
  324.     16483,  100,16483,   86,  100,16483,  100,16483,  100,16483,
  325.       100,16483,   51,  100,16483,  100,16483,  100,16483,  100,
  326.     16483,  100,16483,  100,16483,  100,16483,  100,16483,  100,
  327.     16483,   42,  100,16483,  100,16483,  100,16483,  100,16483,
  328.        44,  100,16483,  100,16483,  100,16483,  100,16483,  100,
  329.     16483,  100,16483,  100,16483,  102,  103,  100,16483,   56,
  330.       100,16483,  100,16483,   46,  100,16483,  100,16483,   45,
  331.  
  332.       100,16483,   47,  100,16483,  100,16483,  100,16483,   92,
  333.       100,16483,  100,16483,  100,16483,  100,16483,  100,16483,
  334.       100,16483,  100,16483,   87,  100,16483,  100,16483,  100,
  335.     16483,  100,16483,  100,16483,  100,16483,  100,16483,   53,
  336.       100,16483,   76,  100,16483,  100,16483,  100,16483,  100,
  337.     16483,   49,  100,16483,  100,16483,  100,16483,  100,16483,
  338.       100,16483,   63,  100,16483,   77,  100,16483,  100,16483,
  339.       102,  103,  100,16483,   61,  100,16483,  100,16483,  100,
  340.     16483,   78,  100,16483,  100,16483,   74,  100,16483,  100,
  341.     16483,   71,  100,16483,  100,16483,  100,16483,   64,  100,
  342.  
  343.     16483,  100,16483,   54,  100,16483,  100,16483,   52,  100,
  344.     16483,  100,16483,  100,16483,   75,  100,16483,   90,  100,
  345.     16483,  100,16483,  100,16483,   96,  100,16483,  100,16483,
  346.        70,  100,16483,  100,16483,  100,16483,  100,16483,  100,
  347.     16483,   62,  100,16483,   57,  100,16483,   58,  100,16483,
  348.       100,16483,  100,16483,  100,16483,  100,16483,  100,16483,
  349.       100,16483,  100,16483,   84,  100,16483,  100,16483,  100,
  350.     16483,   97,  100,16483,   88,  100,16483,  100,16483,  100,
  351.     16483,  100,16483,  100,16483,   82,  100,16483,   60,  100,
  352.     16483,  100,16483,   93,  100,16483,  100,16483,  100,16483,
  353.  
  354.        79,  100,16483,  100,16483,   69,  100,16483,  100,16483,
  355.       100,16483,  100,16483,  100,16483,  100,16483,   81,  100,
  356.     16483,  100,16483,   91,  100,16483,  100,16483,   68,  100,
  357.     16483,  100,16483,  100,16483,  100,16483,  100,16483,   89,
  358.       100,16483,  100,16483,  100,16483,   80,  100,16483,   94,
  359.       100,16483,   98,  100,16483,   95,  100,16483,   72,  100,
  360.     16483,   73,  100,16483
  361.     } ;
  362.  
  363. static const short int yy_accept[312] =
  364.     {   0,
  365.         1,    1,    1,    1,    1,    1,    1,    1,    1,    2,
  366.         4,    7,    9,   12,   14,   17,   20,   23,   26,   29,
  367.        32,   35,   38,   41,   44,   47,   50,   53,   56,   59,
  368.        62,   65,   69,   73,   76,   79,   82,   85,   89,   93,
  369.        97,  101,  105,  109,  113,  117,  121,  125,  129,  133,
  370.       137,  141,  145,  148,  151,  154,  157,  160,  162,  164,
  371.       166,  168,  170,  172,  174,  176,  178,  180,  183,  186,
  372.       187,  188,  188,  189,  190,  191,  192,  193,  194,  195,
  373.       196,  197,  197,  198,  199,  200,  201,  201,  203,  203,
  374.       205,  207,  209,  211,  213,  215,  217,  219,  221,  223,
  375.  
  376.       225,  227,  229,  231,  233,  235,  238,  240,  242,  244,
  377.       246,  248,  250,  252,  254,  256,  258,  260,  262,  264,
  378.       266,  269,  272,  275,  278,  280,  281,  282,  283,  283,
  379.       283,  283,  283,  284,  285,  286,  287,  287,  289,  289,
  380.       289,  290,  291,  294,  296,  298,  300,  303,  305,  307,
  381.       309,  311,  313,  315,  317,  320,  322,  324,  327,  330,
  382.       332,  334,  337,  339,  341,  343,  346,  348,  350,  352,
  383.       354,  356,  358,  360,  362,  365,  367,  369,  371,  374,
  384.       376,  378,  380,  382,  384,  386,  386,  386,  387,  387,
  385.       387,  388,  390,  393,  395,  398,  400,  403,  406,  408,
  386.  
  387.       410,  413,  415,  417,  419,  421,  423,  425,  428,  430,
  388.       432,  434,  436,  438,  440,  443,  446,  448,  450,  452,
  389.       455,  457,  459,  461,  463,  466,  469,  471,  471,  473,
  390.       475,  478,  480,  482,  485,  487,  490,  492,  495,  497,
  391.       499,  502,  504,  507,  509,  512,  514,  516,  519,  522,
  392.       524,  526,  529,  531,  534,  536,  538,  540,  542,  545,
  393.       548,  551,  553,  555,  557,  559,  561,  563,  565,  568,
  394.       570,  572,  575,  578,  580,  582,  584,  586,  589,  592,
  395.       594,  597,  599,  601,  604,  606,  609,  611,  613,  615,
  396.       617,  619,  622,  624,  627,  629,  632,  634,  636,  638,
  397.  
  398.       640,  643,  645,  647,  650,  653,  656,  659,  662,  665,
  399.       665
  400.     } ;
  401.  
  402. static const YY_CHAR yy_ec[128] =
  403.     {   0,
  404.         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
  405.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  406.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  407.         1,    2,    4,    5,    6,    7,    8,    9,    1,   10,
  408.        11,   12,   13,   14,   15,   16,   17,   18,   19,   20,
  409.        21,   22,   21,   21,   21,   21,   21,   23,   24,   25,
  410.        26,   27,    1,    1,   28,   28,   28,   28,   29,   28,
  411.        28,   28,   30,   28,   28,   31,   32,   33,   28,   34,
  412.        35,   36,   37,   38,   28,   28,   28,   28,   28,   28,
  413.        39,   40,   41,   42,   43,    1,   44,   45,   46,   47,
  414.  
  415.        48,   49,   50,   51,   52,   28,   53,   54,   55,   56,
  416.        57,   58,   59,   60,   61,   62,   63,   64,   65,   66,
  417.        67,   68,   69,   70,   71,   72,    1
  418.     } ;
  419.  
  420. static const YY_CHAR yy_meta[73] =
  421.     {   0,
  422.         1,    2,    3,    1,    1,    1,    1,    1,    1,    1,
  423.         1,    1,    1,    1,    4,    5,    5,    6,    6,    6,
  424.         6,    6,    1,    1,    1,    7,    1,    8,    8,    8,
  425.         8,    8,    8,    8,    8,    8,    8,    8,    1,    1,
  426.         1,    1,    8,    8,    8,    8,    8,    8,    8,    8,
  427.         8,    8,    8,    8,    8,    8,    8,    8,    8,    8,
  428.         8,    8,    8,    8,    8,    8,    8,    8,    1,    1,
  429.         1,    1
  430.     } ;
  431.  
  432. static const short int yy_base[318] =
  433.     {   0,
  434.         0,  384,   70,   71,  384,  374,   88,    0,  364, 1067,
  435.       342, 1067,  287,  305, 1067, 1067,  274, 1067, 1067,  267,
  436.      1067, 1067,  227,   57,   68,  145,  210, 1067,  190,  182,
  437.       180,  160,  166, 1067, 1067, 1067, 1067,  168,  169,  170,
  438.       171,  175,  173,  176,  179,  185,  189,  196,  205,  218,
  439.       201,  219, 1067,  134, 1067, 1067, 1067, 1067, 1067,  168,
  440.       157, 1067, 1067, 1067, 1067,  163,  166,  250,  167,   84,
  441.      1067,   79, 1067, 1067, 1067, 1067,  269, 1067, 1067,  274,
  442.       286,  305, 1067, 1067, 1067, 1067,  174,  186,    0,  221,
  443.       271,  223,  307,  309,  275,  310,  312,  274,  314,  273,
  444.  
  445.       319,  327,  328,  337,  339,  340,  345,  346,  344,  350,
  446.       353,  349,  354,  357,  358,  356,  376,  383,  389,  384,
  447.       387,  393,  396,  397,  404, 1067, 1067, 1067,   64,  173,
  448.       244,  249,  231,  429,  239,  326,  440,  445,  457,  462,
  449.       467, 1067,  416,  466,  443,  469,  488,  489,  492,  495,
  450.       496,  494,  498,  499,  500,  501,  504,  503,  505,  506,
  451.       507,  508,  509,  510,  511,  539,  536,  514,  540,  517,
  452.       543,  542,  555,  557,  559,  569,  572,  574,  575,  576,
  453.       577,  578,  582,  586,  589,  333,  604,  625,  635,  640,
  454.       645,  590,  592,  605,  580,  603,  611,  612,  647,  650,
  455.  
  456.       666,  667,  668,  669,  670,  672,  675,  676,  678,  682,
  457.       677,  680,  681,  683,  684,  685,  686,  687,  689,  688,
  458.       717,  718,  720,  721,  725,  726,  735,  735,  748,  756,
  459.       736,  758,  737,  738,  757,  769,  770,  775,  779,  783,
  460.       785,  786,  787,  788,  789,  790,  791,  795,  796,  798,
  461.       797,  802,  806,  804,  808,  805,  817,  818,  823,  833,
  462.       834,  845,  835,  840,  846,  848,  849,  856,  861,  862,
  463.       867,  865,  866,  871,  877,  879,  874,  881,  882,  883,
  464.       887,  888,  897,  904,  909,  910,  913,  914,  918,  920,
  465.       925,  929,  932,  930,  935,  939,  940,  941,  945,  948,
  466.  
  467.       951,  957,  958,  961,  967,  968,  973,  977,  983, 1067,
  468.      1018, 1026, 1034, 1041, 1045, 1050, 1058
  469.     } ;
  470.  
  471. static const short int yy_def[318] =
  472.     {   0,
  473.       310,    1,  311,  311,  312,  312,  310,    7,  310,  310,
  474.       310,  310,  310,  313,  310,  310,  310,  310,  310,  310,
  475.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  476.       310,  314,  314,  310,  310,  310,  310,  314,  314,  314,
  477.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  478.       314,  314,  310,  310,  310,  310,  310,  310,  310,  310,
  479.       310,  310,  310,  310,  310,  310,  315,  310,  316,  310,
  480.       310,  313,  310,  310,  310,  310,  310,  310,  310,  310,
  481.       310,  310,  310,  310,  310,  310,  310,  314,  317,  314,
  482.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  483.  
  484.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  485.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  486.       314,  314,  314,  314,  314,  310,  310,  310,  310,  315,
  487.       310,  315,  316,  310,  316,  316,  310,  310,  310,  310,
  488.       310,  310,  314,  314,  314,  314,  314,  314,  314,  314,
  489.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  490.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  491.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  492.       314,  314,  314,  314,  314,  315,  310,  310,  310,  310,
  493.       310,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  494.  
  495.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  496.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  497.       314,  314,  314,  314,  314,  314,  314,  310,  310,  314,
  498.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  499.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  500.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  501.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  502.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  503.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  504.       314,  314,  314,  314,  314,  314,  314,  314,  314,  314,
  505.  
  506.       314,  314,  314,  314,  314,  314,  314,  314,  314,    0,
  507.       310,  310,  310,  310,  310,  310,  310
  508.     } ;
  509.  
  510. static const short int yy_nxt[1140] =
  511.     {   0,
  512.        10,   11,   12,   13,   14,   10,   15,   16,   17,   18,
  513.        19,   20,   21,   22,   23,   24,   25,   26,   26,   26,
  514.        26,   26,   27,   28,   29,   30,   31,   32,   32,   32,
  515.        32,   33,   32,   32,   32,   32,   32,   32,   34,   35,
  516.        36,   37,   32,   38,   32,   39,   40,   41,   42,   43,
  517.        44,   45,   32,   46,   32,   32,   32,   47,   32,   48,
  518.        49,   50,   51,   32,   52,   32,   32,   32,   53,   54,
  519.        55,   56,   59,   59,   77,   77,   77,   77,   77,   78,
  520.       130,   60,   60,   73,   79,   70,   61,   61,   64,   64,
  521.        65,   64,   64,   64,   64,   64,   64,   64,   64,   64,
  522.  
  523.        64,   64,   64,   66,   67,   68,   68,   68,   68,   68,
  524.        64,   64,   64,   64,   64,   69,   69,   69,   69,   69,
  525.        69,   69,   69,   69,   69,   69,   64,   64,   64,   64,
  526.        69,   69,   69,   69,   69,   69,   69,   69,   69,   69,
  527.        69,   69,   69,   69,   69,   69,   69,   69,   69,   69,
  528.        69,   69,   69,   69,   69,   69,   64,   64,   64,   64,
  529.        80,   87,   81,   81,   81,   81,   81,   87,  128,   87,
  530.        87,   87,   87,   82,   87,   87,   87,   87,  129,  130,
  531.        87,  131,  132,  130,  127,   89,   87,   87,  131,  310,
  532.        87,   89,   82,   89,   89,   89,   89,   87,   89,   89,
  533.  
  534.        89,   89,   87,  126,   89,   86,   87,   85,   90,  136,
  535.        89,   89,   91,   92,   89,   84,  104,   99,  102,   87,
  536.        87,   89,   87,   93,   87,   97,   89,  106,   94,   95,
  537.        89,  103,   83,   96,  107,   98,  100,  101,  105,  112,
  538.       110,  108,  111,   89,   89,  109,   89,  130,   89,  143,
  539.       114,  144,  113,   76,  145,  130,  115,  146,  124,  129,
  540.       130,  118,  116,  117,  131,  186,  125,  134,  134,  134,
  541.       134,  134,   87,  136,   87,   87,   87,  119,   75,  148,
  542.       120,  136,   74,  121,  122,  123,   77,   77,   77,   77,
  543.        77,  138,  138,  138,  138,  138,   89,  137,   89,   89,
  544.  
  545.        89,   80,  139,   81,   81,   81,   81,   81,   87,   73,
  546.        87,   87,   71,   87,   82,   87,  137,  140,  151,  140,
  547.        87,  139,  141,  141,  141,  141,  141,  156,   87,   87,
  548.       158,  147,   89,   82,   89,   89,  152,   89,   87,   89,
  549.        87,   87,  130,   70,   89,   87,   87,   87,  131,  310,
  550.        87,   87,   89,   89,   87,   87,  149,   87,   87,   87,
  551.       150,  153,   89,  310,   89,   89,  159,  154,  136,   89,
  552.        89,   89,  155,  157,   89,   89,   63,   87,   89,   89,
  553.       160,   89,   89,   89,   87,   87,   63,  161,   87,   57,
  554.        87,  162,  164,  165,   87,  166,  170,   87,   87,  163,
  555.  
  556.       174,   89,  167,  310,  171,   87,  176,  172,   89,   89,
  557.       168,  169,   89,  175,   89,  173,  310,   87,   89,  310,
  558.       310,   89,   89,  310,  310,  310,  310,  178,  310,   89,
  559.       310,  310,  180,  310,  310,  177,  310,  310,  179,  310,
  560.       181,   89,  310,  184,   87,  182,  134,  134,  134,  134,
  561.       134,  183,  187,  310,  187,  185,  310,  188,  188,  188,
  562.       188,  188,  138,  138,  138,  138,  138,   87,   89,  190,
  563.        87,  190,  193,  189,  191,  191,  191,  191,  191,  141,
  564.       141,  141,  141,  141,  141,  141,  141,  141,  141,   87,
  565.        87,   89,  189,   87,   89,   87,   87,   87,  192,   87,
  566.  
  567.        87,   87,   87,  194,   87,   87,   87,   87,   87,   87,
  568.        87,   87,   87,   89,   89,   87,  310,   89,   87,   89,
  569.        89,   89,  310,   89,   89,   89,   89,  310,   89,   89,
  570.        89,   89,   89,   89,   89,   89,   89,   87,  310,   89,
  571.        87,   87,   89,   87,   87,  196,  201,  310,  310,  195,
  572.       197,  198,  203,  199,  200,  204,   87,  210,   87,  202,
  573.        87,   89,  209,  208,   89,   89,  205,   89,   89,  207,
  574.        87,  206,  214,   87,  212,   87,   87,   87,   87,   87,
  575.        89,   87,   89,   87,   89,  213,  310,   87,  211,  215,
  576.        87,   87,  310,   87,   89,  216,  310,   89,  217,   89,
  577.  
  578.        89,   89,   89,   89,   87,   89,   87,   89,  230,  231,
  579.       218,   89,   87,   87,   89,   89,  219,   89,  310,  310,
  580.       223,  188,  188,  188,  188,  188,  310,  221,   89,  225,
  581.        89,  222,  310,  220,  232,  224,   89,   89,  227,  310,
  582.       233,  226,  188,  188,  188,  188,  188,  228,   87,  228,
  583.       234,   87,  229,  229,  229,  229,  229,  191,  191,  191,
  584.       191,  191,  191,  191,  191,  191,  191,   87,   87,   87,
  585.        87,   87,   89,   87,  310,   89,   87,   87,   87,   87,
  586.       310,   87,   87,   87,   87,   87,   87,   87,   87,   87,
  587.        87,   89,   89,   89,   89,   89,  310,   89,  235,  245,
  588.  
  589.        89,   89,   89,   89,  236,   89,   89,   89,   89,   89,
  590.        89,   89,   89,   89,   89,  242,  310,  241,   87,   87,
  591.       246,   87,   87,  239,  310,  237,   87,   87,  238,  310,
  592.       249,  248,  240,  244,  252,  243,   87,   87,   87,   87,
  593.       250,  247,   89,   89,  310,   89,   89,  251,  253,  310,
  594.        89,   89,  229,  229,  229,  229,  229,   87,   87,   87,
  595.        89,   89,   89,   89,  254,  229,  229,  229,  229,  229,
  596.        87,   87,  257,  259,  262,  256,   87,  260,  255,  261,
  597.        87,   89,   89,   89,   87,  258,   87,   87,   87,   87,
  598.        87,   87,   87,  310,   89,   89,   87,   87,   87,   87,
  599.  
  600.        89,  263,  310,   87,   89,   87,   87,   87,   89,   87,
  601.        89,   89,   89,   89,   89,   89,   89,  264,   87,   87,
  602.        89,   89,   89,   89,   87,  265,  266,   89,  310,   89,
  603.        89,   89,  310,   89,   87,   87,   87,  310,  270,  268,
  604.       310,   87,   89,   89,  272,  267,   87,   87,   89,   87,
  605.        87,  269,  271,  273,  276,  310,  274,   87,   89,   89,
  606.        89,  275,   87,   87,  279,   89,   87,   87,   87,  310,
  607.        89,   89,   87,   89,   89,   87,  310,  277,   87,  278,
  608.        87,   89,   87,   87,   87,  310,   89,   89,   87,   87,
  609.        89,   89,   89,  282,  310,  284,   89,  280,   87,   89,
  610.  
  611.       281,  310,   89,  310,   89,   87,   89,   89,   89,  283,
  612.        87,   87,   89,   89,   87,   87,  286,  285,  287,   87,
  613.       290,   87,   89,  310,  310,  288,   87,  289,  292,   89,
  614.        87,   87,  291,   87,   89,   89,   87,  310,   89,   89,
  615.        87,   87,   87,   89,  293,   89,   87,  294,  295,   87,
  616.        89,  310,   87,  310,   89,   89,  310,   89,   87,   87,
  617.        89,  298,   87,  310,   89,   89,   89,  310,   87,   87,
  618.        89,  310,  301,   89,   87,  296,   89,  299,   87,  302,
  619.       297,  300,   89,   89,   87,  310,   89,  304,  310,  310,
  620.       310,  303,   89,   89,  310,  307,  310,  310,   89,  306,
  621.  
  622.       310,  305,   89,  310,  310,  310,  310,  310,   89,  310,
  623.       310,  310,  310,  309,  310,  310,  310,  308,   58,   58,
  624.        58,   58,   58,   58,   58,   58,   62,   62,   62,   62,
  625.        62,   62,   62,   62,   72,   72,  310,   72,   72,   72,
  626.        72,   72,   88,  310,  310,  310,   88,   88,   88,  133,
  627.       310,  310,  133,  135,  135,  135,  310,  135,  142,  142,
  628.       142,  142,  142,  142,  310,  142,    9,  310,  310,  310,
  629.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  630.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  631.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  632.  
  633.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  634.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  635.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  636.       310,  310,  310,  310,  310,  310,  310,  310,  310
  637.     } ;
  638.  
  639. static const short int yy_chk[1140] =
  640.     {   0,
  641.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  642.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  643.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  644.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  645.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  646.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  647.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  648.         1,    1,    3,    4,   24,   24,   24,   24,   24,   25,
  649.       129,    3,    4,   72,   25,   70,    3,    4,    7,    7,
  650.         7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
  651.  
  652.         7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
  653.         7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
  654.         7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
  655.         7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
  656.         7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
  657.         7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
  658.        26,   32,   26,   26,   26,   26,   26,   33,   61,   38,
  659.        39,   40,   41,   26,   43,   87,   42,   44,   66,   66,
  660.        45,   67,   67,   69,   60,   32,   46,   88,  130,  130,
  661.        47,   33,   26,   38,   39,   40,   41,   48,   43,   87,
  662.  
  663.        42,   44,   51,   54,   45,   31,   49,   30,   33,   69,
  664.        46,   88,   38,   38,   47,   29,   43,   40,   42,   50,
  665.        52,   48,   90,   38,   92,   39,   51,   45,   38,   38,
  666.        49,   42,   27,   38,   45,   39,   41,   41,   44,   48,
  667.        47,   46,   47,   50,   52,   46,   90,  133,   92,   90,
  668.        49,   90,   48,   23,   90,  135,   49,   90,   51,  131,
  669.       131,   50,   49,   49,  132,  132,   52,   68,   68,   68,
  670.        68,   68,   91,  133,  100,   98,   95,   50,   20,   92,
  671.        50,  135,   17,   50,   50,   50,   77,   77,   77,   77,
  672.        77,   80,   80,   80,   80,   80,   91,   77,  100,   98,
  673.  
  674.        95,   81,   80,   81,   81,   81,   81,   81,   93,   14,
  675.        94,   96,   13,   97,   81,   99,   77,   82,   95,   82,
  676.       101,   80,   82,   82,   82,   82,   82,   98,  102,  103,
  677.       100,   91,   93,   81,   94,   96,   95,   97,  104,   99,
  678.       105,  106,  136,   11,  101,  109,  107,  108,  186,  186,
  679.       112,  110,  102,  103,  111,  113,   93,  116,  114,  115,
  680.        94,   96,  104,    9,  105,  106,  101,   97,  136,  109,
  681.       107,  108,   97,   99,  112,  110,    6,  117,  111,  113,
  682.       102,  116,  114,  115,  118,  120,    5,  103,  121,    2,
  683.       119,  103,  105,  107,  122,  108,  111,  123,  124,  104,
  684.  
  685.       114,  117,  108,    0,  112,  125,  116,  113,  118,  120,
  686.       109,  110,  121,  115,  119,  113,    0,  143,  122,    0,
  687.         0,  123,  124,    0,    0,    0,    0,  118,    0,  125,
  688.         0,    0,  119,    0,    0,  117,    0,    0,  118,    0,
  689.       119,  143,    0,  120,  145,  119,  134,  134,  134,  134,
  690.       134,  119,  137,    0,  137,  125,    0,  137,  137,  137,
  691.       137,  137,  138,  138,  138,  138,  138,  144,  145,  139,
  692.       146,  139,  145,  138,  139,  139,  139,  139,  139,  140,
  693.       140,  140,  140,  140,  141,  141,  141,  141,  141,  147,
  694.       148,  144,  138,  149,  146,  152,  150,  151,  144,  153,
  695.  
  696.       154,  155,  156,  146,  158,  157,  159,  160,  161,  162,
  697.       163,  164,  165,  147,  148,  168,    0,  149,  170,  152,
  698.       150,  151,    0,  153,  154,  155,  156,    0,  158,  157,
  699.       159,  160,  161,  162,  163,  164,  165,  167,    0,  168,
  700.       166,  169,  170,  172,  171,  149,  154,    0,    0,  148,
  701.       150,  151,  156,  152,  153,  157,  173,  166,  174,  154,
  702.       175,  167,  165,  164,  166,  169,  160,  172,  171,  163,
  703.       176,  161,  170,  177,  168,  178,  179,  180,  181,  182,
  704.       173,  195,  174,  183,  175,  169,    0,  184,  167,  171,
  705.       185,  192,    0,  193,  176,  172,    0,  177,  173,  178,
  706.  
  707.       179,  180,  181,  182,  196,  195,  194,  183,  192,  192,
  708.       174,  184,  197,  198,  185,  192,  176,  193,    0,    0,
  709.       181,  187,  187,  187,  187,  187,    0,  178,  196,  183,
  710.       194,  180,    0,  177,  193,  182,  197,  198,  185,    0,
  711.       194,  184,  188,  188,  188,  188,  188,  189,  199,  189,
  712.       196,  200,  189,  189,  189,  189,  189,  190,  190,  190,
  713.       190,  190,  191,  191,  191,  191,  191,  201,  202,  203,
  714.       204,  205,  199,  206,    0,  200,  207,  208,  211,  209,
  715.         0,  212,  213,  210,  214,  215,  216,  217,  218,  220,
  716.       219,  201,  202,  203,  204,  205,    0,  206,  199,  210,
  717.  
  718.       207,  208,  211,  209,  200,  212,  213,  210,  214,  215,
  719.       216,  217,  218,  220,  219,  206,    0,  205,  221,  222,
  720.       211,  223,  224,  203,    0,  201,  225,  226,  202,    0,
  721.       214,  213,  204,  209,  218,  207,  227,  231,  233,  234,
  722.       215,  212,  221,  222,    0,  223,  224,  217,  219,    0,
  723.       225,  226,  228,  228,  228,  228,  228,  230,  235,  232,
  724.       227,  231,  233,  234,  221,  229,  229,  229,  229,  229,
  725.       236,  237,  224,  230,  233,  223,  238,  232,  222,  232,
  726.       239,  230,  235,  232,  240,  227,  241,  242,  243,  244,
  727.       245,  246,  247,    0,  236,  237,  248,  249,  251,  250,
  728.  
  729.       238,  235,    0,  252,  239,  254,  256,  253,  240,  255,
  730.       241,  242,  243,  244,  245,  246,  247,  237,  257,  258,
  731.       248,  249,  251,  250,  259,  239,  240,  252,    0,  254,
  732.       256,  253,    0,  255,  260,  261,  263,    0,  247,  244,
  733.         0,  264,  257,  258,  251,  242,  262,  265,  259,  266,
  734.       267,  246,  250,  253,  256,    0,  255,  268,  260,  261,
  735.       263,  255,  269,  270,  262,  264,  272,  273,  271,    0,
  736.       262,  265,  274,  266,  267,  277,    0,  257,  275,  258,
  737.       276,  268,  278,  279,  280,    0,  269,  270,  281,  282,
  738.       272,  273,  271,  265,    0,  267,  274,  263,  283,  277,
  739.  
  740.       264,    0,  275,    0,  276,  284,  278,  279,  280,  266,
  741.       285,  286,  281,  282,  287,  288,  270,  268,  271,  289,
  742.       275,  290,  283,    0,    0,  273,  291,  274,  277,  284,
  743.       292,  294,  276,  293,  285,  286,  295,    0,  287,  288,
  744.       296,  297,  298,  289,  280,  290,  299,  282,  283,  300,
  745.       291,    0,  301,    0,  292,  294,    0,  293,  302,  303,
  746.       295,  288,  304,    0,  296,  297,  298,    0,  305,  306,
  747.       299,    0,  291,  300,  307,  285,  301,  289,  308,  293,
  748.       287,  290,  302,  303,  309,    0,  304,  297,    0,    0,
  749.         0,  295,  305,  306,    0,  300,    0,    0,  307,  299,
  750.  
  751.         0,  298,  308,    0,    0,    0,    0,    0,  309,    0,
  752.         0,    0,    0,  303,    0,    0,    0,  302,  311,  311,
  753.       311,  311,  311,  311,  311,  311,  312,  312,  312,  312,
  754.       312,  312,  312,  312,  313,  313,    0,  313,  313,  313,
  755.       313,  313,  314,    0,    0,    0,  314,  314,  314,  315,
  756.         0,    0,  315,  316,  316,  316,    0,  316,  317,  317,
  757.       317,  317,  317,  317,    0,  317,  310,  310,  310,  310,
  758.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  759.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  760.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  761.  
  762.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  763.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  764.       310,  310,  310,  310,  310,  310,  310,  310,  310,  310,
  765.       310,  310,  310,  310,  310,  310,  310,  310,  310
  766.     } ;
  767.  
  768. static yy_state_type yy_last_accepting_state;
  769. static YY_CHAR *yy_last_accepting_cpos;
  770.  
  771. static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr;
  772. static YY_CHAR *yy_full_match;
  773. static int yy_lp;
  774. static int yy_looking_for_trail_begin = 0;
  775. static int yy_full_lp;
  776. static int *yy_full_state;
  777. #define YY_TRAILING_MASK 0x2000
  778. #define YY_TRAILING_HEAD_MASK 0x4000
  779. #define REJECT \
  780. { \
  781. *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \
  782. yy_cp = yy_full_match; /* restore poss. backed-over text */ \
  783. yy_lp = yy_full_lp; /* restore orig. accepting pos. */ \
  784. yy_state_ptr = yy_full_state; /* restore orig. state */ \
  785. yy_current_state = *yy_state_ptr; /* restore curr. state */ \
  786. ++yy_lp; \
  787. goto find_rule; \
  788. }
  789. #define yymore() yymore_used_but_not_detected
  790. #define YY_MORE_ADJ 0
  791.  
  792. /* these variables are all declared out here so that section 3 code can
  793.  * manipulate them
  794.  */
  795. /* points to current character in buffer */
  796. static YY_CHAR *yy_c_buf_p = (YY_CHAR *) 0;
  797. static int yy_init = 1;        /* whether we need to initialize */
  798. static int yy_start = 0;    /* start state number */
  799.  
  800. /* flag which is used to allow yywrap()'s to do buffer switches
  801.  * instead of setting up a fresh yyin.  A bit of a hack ...
  802.  */
  803. static int yy_did_buffer_switch_on_eof;
  804.  
  805. static yy_state_type yy_get_previous_state YY_PROTO(( void ));
  806. static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
  807. static int yy_get_next_buffer YY_PROTO(( void ));
  808. static void yyunput YY_PROTO(( YY_CHAR c, YY_CHAR *buf_ptr ));
  809. void yyrestart YY_PROTO(( FILE *input_file ));
  810. void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
  811. void yy_load_buffer_state YY_PROTO(( void ));
  812. YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
  813. void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  814. void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
  815.  
  816. #define yy_new_buffer yy_create_buffer
  817.  
  818. #ifdef __cplusplus
  819. static int yyinput YY_PROTO(( void ));
  820. #else
  821. static int input YY_PROTO(( void ));
  822. #endif
  823.  
  824. YY_DECL
  825.     {
  826.     register yy_state_type yy_current_state;
  827.     register YY_CHAR *yy_cp, *yy_bp;
  828.     register int yy_act;
  829.  
  830.  
  831.  
  832.  
  833.     if ( yy_init )
  834.     {
  835.     YY_USER_INIT;
  836.  
  837.     if ( ! yy_start )
  838.         yy_start = 1;    /* first start state */
  839.  
  840.     if ( ! yyin )
  841.         yyin = stdin;
  842.  
  843.     if ( ! yyout )
  844.         yyout = stdout;
  845.  
  846.     if ( yy_current_buffer )
  847.         yy_init_buffer( yy_current_buffer, yyin );
  848.     else
  849.         yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
  850.  
  851.     yy_load_buffer_state();
  852.  
  853.     yy_init = 0;
  854.     }
  855.  
  856.     while ( 1 )        /* loops until end-of-file is reached */
  857.     {
  858.     yy_cp = yy_c_buf_p;
  859.  
  860.     /* support of yytext */
  861.     *yy_cp = yy_hold_char;
  862.  
  863.     /* yy_bp points to the position in yy_ch_buf of the start of the
  864.      * current run.
  865.      */
  866.     yy_bp = yy_cp;
  867.  
  868.     yy_current_state = yy_start;
  869.     if ( yy_bp[-1] == '\n' )
  870.         ++yy_current_state;
  871.     yy_state_ptr = yy_state_buf;
  872.     *yy_state_ptr++ = yy_current_state;
  873. yy_match:
  874.     do
  875.         {
  876.         register YY_CHAR yy_c = yy_ec[*yy_cp];
  877.         while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  878.         {
  879.         yy_current_state = yy_def[yy_current_state];
  880.         if ( yy_current_state >= 311 )
  881.             yy_c = yy_meta[yy_c];
  882.         }
  883.         yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  884.         *yy_state_ptr++ = yy_current_state;
  885.         ++yy_cp;
  886.         }
  887.     while ( yy_current_state != 310 );
  888.  
  889. yy_find_action:
  890.     yy_current_state = *--yy_state_ptr;
  891.     yy_lp = yy_accept[yy_current_state];
  892. find_rule: /* we branch to this label when backtracking */
  893.     for ( ; ; ) /* until we find what rule we matched */
  894.         {
  895.         if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] )
  896.         {
  897.         yy_act = yy_acclist[yy_lp];
  898.         if ( yy_act & YY_TRAILING_HEAD_MASK ||
  899.              yy_looking_for_trail_begin )
  900.             {
  901.             if ( yy_act == yy_looking_for_trail_begin )
  902.             {
  903.             yy_looking_for_trail_begin = 0;
  904.             yy_act &= ~YY_TRAILING_HEAD_MASK;
  905.             break;
  906.             }
  907.             }
  908.         else if ( yy_act & YY_TRAILING_MASK )
  909.             {
  910.             yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK;
  911.             yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK;
  912.             }
  913.         else
  914.             {
  915.             yy_full_match = yy_cp;
  916.             yy_full_state = yy_state_ptr;
  917.             yy_full_lp = yy_lp;
  918.             break;
  919.             }
  920.         ++yy_lp;
  921.         goto find_rule;
  922.         }
  923.         --yy_cp;
  924.         yy_current_state = *--yy_state_ptr;
  925.         yy_lp = yy_accept[yy_current_state];
  926.         }
  927.  
  928.     YY_DO_BEFORE_ACTION;
  929.     YY_USER_ACTION;
  930.  
  931. do_action:    /* this label is used only to access EOF actions */
  932.  
  933.  
  934.     switch ( yy_act )
  935.         {
  936. case 1:
  937. # line 44 "lex.l"
  938. BEGIN(EXTFILE);
  939.     YY_BREAK
  940. case 2:
  941. # line 45 "lex.l"
  942. lineno = atoi(yytext); 
  943.     YY_BREAK
  944. case 3:
  945. # line 46 "lex.l"
  946. currentFilename = yytext; 
  947.     YY_BREAK
  948. case 4:
  949. # line 47 "lex.l"
  950. ;
  951.     YY_BREAK
  952. case 5:
  953. # line 48 "lex.l"
  954. BEGIN 0;
  955.     YY_BREAK
  956. case 6:
  957. # line 50 "lex.l"
  958. BEGIN(C_COMMENT);
  959.     YY_BREAK
  960. case 7:
  961. # line 51 "lex.l"
  962. BEGIN(CPP_COMMENT); 
  963.     YY_BREAK
  964. case 8:
  965. # line 53 "lex.l"
  966. { return *yytext; }   
  967.     YY_BREAK
  968. case 9:
  969. # line 54 "lex.l"
  970. { return *yytext; }  
  971.     YY_BREAK
  972. case 10:
  973. # line 55 "lex.l"
  974. { return *yytext; }
  975.     YY_BREAK
  976. case 11:
  977. # line 56 "lex.l"
  978. { return *yytext; }
  979.     YY_BREAK
  980. case 12:
  981. # line 57 "lex.l"
  982. { return *yytext; }
  983.     YY_BREAK
  984. case 13:
  985. # line 58 "lex.l"
  986. { return *yytext; }
  987.     YY_BREAK
  988. case 14:
  989. # line 59 "lex.l"
  990. { return *yytext; }
  991.     YY_BREAK
  992. case 15:
  993. # line 60 "lex.l"
  994. { return *yytext; }
  995.     YY_BREAK
  996. case 16:
  997. # line 61 "lex.l"
  998. { return *yytext; }
  999.     YY_BREAK
  1000. case 17:
  1001. # line 62 "lex.l"
  1002. { return *yytext; }
  1003.     YY_BREAK
  1004. case 18:
  1005. # line 63 "lex.l"
  1006. { return *yytext; }
  1007.     YY_BREAK
  1008. case 19:
  1009. # line 64 "lex.l"
  1010. { return *yytext; }
  1011.     YY_BREAK
  1012. case 20:
  1013. # line 65 "lex.l"
  1014. { return *yytext; }
  1015.     YY_BREAK
  1016. case 21:
  1017. # line 66 "lex.l"
  1018. { return *yytext; }
  1019.     YY_BREAK
  1020. case 22:
  1021. # line 67 "lex.l"
  1022. { return *yytext; }
  1023.     YY_BREAK
  1024. case 23:
  1025. # line 68 "lex.l"
  1026. { return *yytext; }
  1027.     YY_BREAK
  1028. case 24:
  1029. # line 69 "lex.l"
  1030. { return *yytext; }
  1031.     YY_BREAK
  1032. case 25:
  1033. # line 70 "lex.l"
  1034. { return *yytext; }
  1035.     YY_BREAK
  1036. case 26:
  1037. # line 71 "lex.l"
  1038. { return *yytext; }
  1039.     YY_BREAK
  1040. case 27:
  1041. # line 72 "lex.l"
  1042. { return *yytext; }
  1043.     YY_BREAK
  1044. case 28:
  1045. # line 73 "lex.l"
  1046. { return *yytext; }
  1047.     YY_BREAK
  1048. case 29:
  1049. # line 74 "lex.l"
  1050. { return *yytext; }
  1051.     YY_BREAK
  1052. case 30:
  1053. # line 75 "lex.l"
  1054. { return *yytext; }
  1055.     YY_BREAK
  1056. case 31:
  1057. # line 77 "lex.l"
  1058. { return tSCOPE;  }
  1059.     YY_BREAK
  1060. case 32:
  1061. # line 78 "lex.l"
  1062. { return tPOW;    }
  1063.     YY_BREAK
  1064. case 33:
  1065. # line 79 "lex.l"
  1066. { return tAND;    }
  1067.     YY_BREAK
  1068. case 34:
  1069. # line 80 "lex.l"
  1070. { return tOR;     }        
  1071.     YY_BREAK
  1072. case 35:
  1073. # line 81 "lex.l"
  1074. { return tEQ;     }    
  1075.     YY_BREAK
  1076. case 36:
  1077. # line 82 "lex.l"
  1078. { return tNEQ;    } 
  1079.     YY_BREAK
  1080. case 37:
  1081. # line 83 "lex.l"
  1082. { return tGEQ;    } 
  1083.     YY_BREAK
  1084. case 38:
  1085. # line 84 "lex.l"
  1086. { return tLEQ;    } 
  1087.     YY_BREAK
  1088. case 39:
  1089. # line 85 "lex.l"
  1090. { return *yytext; }
  1091.     YY_BREAK
  1092. case 40:
  1093. # line 86 "lex.l"
  1094. { return *yytext; }
  1095.     YY_BREAK
  1096. case 41:
  1097. # line 87 "lex.l"
  1098. { return tARROW;  } 
  1099.     YY_BREAK
  1100. case 42:
  1101. # line 89 "lex.l"
  1102. { return tSIN;   }
  1103.     YY_BREAK
  1104. case 43:
  1105. # line 90 "lex.l"
  1106. { return tCOS;   }   
  1107.     YY_BREAK
  1108. case 44:
  1109. # line 91 "lex.l"
  1110. { return tTAN;   } 
  1111.     YY_BREAK
  1112. case 45:
  1113. # line 92 "lex.l"
  1114. { return tASIN;  } 
  1115.     YY_BREAK
  1116. case 46:
  1117. # line 93 "lex.l"
  1118. { return tACOS;  } 
  1119.     YY_BREAK
  1120. case 47:
  1121. # line 94 "lex.l"
  1122. { return tATAN;  } 
  1123.     YY_BREAK
  1124. case 48:
  1125. # line 95 "lex.l"
  1126. { return tABS;   }
  1127.     YY_BREAK
  1128. case 49:
  1129. # line 96 "lex.l"
  1130. { return tSQRT;  }
  1131.     YY_BREAK
  1132. case 50:
  1133. # line 97 "lex.l"
  1134. { return tEXP;   }
  1135.     YY_BREAK
  1136. case 51:
  1137. # line 98 "lex.l"
  1138. { return tLOG;   }
  1139.     YY_BREAK
  1140. case 52:
  1141. # line 99 "lex.l"
  1142. { return tLOG10; }
  1143.     YY_BREAK
  1144. case 53:
  1145. # line 100 "lex.l"
  1146. { return tRAND;  }
  1147.     YY_BREAK
  1148. case 54:
  1149. # line 101 "lex.l"
  1150. { return tGAUSS; }
  1151.     YY_BREAK
  1152. case 55:
  1153. # line 102 "lex.l"
  1154. { return tIF;    }
  1155.     YY_BREAK
  1156. case 56:
  1157. # line 104 "lex.l"
  1158. { yylval.value = new Value(M_PI);    return tVALUE; }
  1159.     YY_BREAK
  1160. case 57:
  1161. # line 105 "lex.l"
  1162. { yylval.value = new Value(M_PI_2);  return tVALUE; }
  1163.     YY_BREAK
  1164. case 58:
  1165. # line 106 "lex.l"
  1166. { yylval.value = new Value(M_PI_4);  return tVALUE; }
  1167.     YY_BREAK
  1168. case 59:
  1169. # line 107 "lex.l"
  1170. { yylval.value = new Value(M_E);     return tVALUE; }
  1171.     YY_BREAK
  1172. case 60:
  1173. # line 108 "lex.l"
  1174. { yylval.value = new Value(M_SQRT2); return tVALUE; }
  1175.     YY_BREAK
  1176. case 61:
  1177. # line 109 "lex.l"
  1178. { yylval.value = new Value(M_LN2);   return tVALUE; }
  1179.     YY_BREAK
  1180. case 62:
  1181. # line 110 "lex.l"
  1182. { yylval.value = new Value(M_LN10);  return tVALUE; }
  1183.     YY_BREAK
  1184. case 63:
  1185. # line 111 "lex.l"
  1186. { yylval.value = new Value(1.0);     return tVALUE; }
  1187.     YY_BREAK
  1188. case 64:
  1189. # line 112 "lex.l"
  1190. { yylval.value = new Value(0.0);     return tVALUE; }
  1191.     YY_BREAK
  1192. case 65:
  1193. # line 113 "lex.l"
  1194. { return tTURTLEX; }
  1195.     YY_BREAK
  1196. case 66:
  1197. # line 114 "lex.l"
  1198. { return tTURTLEY; }
  1199.     YY_BREAK
  1200. case 67:
  1201. # line 115 "lex.l"
  1202. { return tTURTLEZ; }
  1203.     YY_BREAK
  1204. case 68:
  1205. # line 117 "lex.l"
  1206. { return tINFINITY; } 
  1207.     YY_BREAK
  1208. case 69:
  1209. # line 119 "lex.l"
  1210. { return tLSYSTEM; }
  1211.     YY_BREAK
  1212. case 70:
  1213. # line 120 "lex.l"
  1214. { return tTABLE; } 
  1215.     YY_BREAK
  1216. case 71:
  1217. # line 121 "lex.l"
  1218. { return tCONST; }  
  1219.     YY_BREAK
  1220. case 72:
  1221. # line 122 "lex.l"
  1222. { return tATTRIBUTES; }
  1223.     YY_BREAK
  1224. case 73:
  1225. # line 123 "lex.l"
  1226. { return tDERIVATION; }
  1227.     YY_BREAK
  1228. case 74:
  1229. # line 124 "lex.l"
  1230. { return tAXIOM; }
  1231.     YY_BREAK
  1232. case 75:
  1233. # line 125 "lex.l"
  1234. { return tPITCH; }
  1235.     YY_BREAK
  1236. case 76:
  1237. # line 126 "lex.l"
  1238. { return tROLL; }
  1239.     YY_BREAK
  1240. case 77:
  1241. # line 127 "lex.l"
  1242. { return tTURN;    }
  1243.     YY_BREAK
  1244. case 78:
  1245. # line 128 "lex.l"
  1246. { return tANGLE; }
  1247.     YY_BREAK
  1248. case 79:
  1249. # line 129 "lex.l"
  1250. { return tFORWARD; }
  1251.     YY_BREAK
  1252. case 80:
  1253. # line 130 "lex.l"
  1254. { return tRANDOMIZE; }
  1255.     YY_BREAK
  1256. case 81:
  1257. # line 131 "lex.l"
  1258. { return tTROPISM; }
  1259.     YY_BREAK
  1260. case 82:
  1261. # line 132 "lex.l"
  1262. { return tWEIGHT; }
  1263.     YY_BREAK
  1264. case 83:
  1265. # line 133 "lex.l"
  1266. { return tEYE; }
  1267.     YY_BREAK
  1268. case 84:
  1269. # line 134 "lex.l"
  1270. { return tLOOKAT; }
  1271.     YY_BREAK
  1272. case 85:
  1273. # line 135 "lex.l"
  1274. { return tUP; }
  1275.     YY_BREAK
  1276. case 86:
  1277. # line 136 "lex.l"
  1278. { return tFOV; }
  1279.     YY_BREAK
  1280. case 87:
  1281. # line 138 "lex.l"
  1282. { return tHULL;     }
  1283.     YY_BREAK
  1284. case 88:
  1285. # line 139 "lex.l"
  1286. { return tSPHERE;   }
  1287.     YY_BREAK
  1288. case 89:
  1289. # line 140 "lex.l"
  1290. { return tTRIANGLE; }
  1291.     YY_BREAK
  1292. case 90:
  1293. # line 141 "lex.l"
  1294. { return tPLANE;    }
  1295.     YY_BREAK
  1296. case 91:
  1297. # line 142 "lex.l"
  1298. { return tCYLINDER; }
  1299.     YY_BREAK
  1300. case 92:
  1301. # line 143 "lex.l"
  1302. { return tCONE;     }
  1303.     YY_BREAK
  1304. case 93:
  1305. # line 144 "lex.l"
  1306. { return tCONERES;  }
  1307.     YY_BREAK
  1308. case 94:
  1309. # line 145 "lex.l"
  1310. { return tSPHERERES;}
  1311.     YY_BREAK
  1312. case 95:
  1313. # line 147 "lex.l"
  1314. { return tTRANSLATE; }
  1315.     YY_BREAK
  1316. case 96:
  1317. # line 148 "lex.l"
  1318. { return tSCALE;     }
  1319.     YY_BREAK
  1320. case 97:
  1321. # line 149 "lex.l"
  1322. { return tROTATE;    }
  1323.     YY_BREAK
  1324. case 98:
  1325. # line 150 "lex.l"
  1326. { return tTRANSFORM; }
  1327.     YY_BREAK
  1328. case 99:
  1329. # line 152 "lex.l"
  1330. {
  1331.                  yylval.name = new rcString(yytext);
  1332.                  return tCONSTANT; 
  1333.                   }
  1334.     YY_BREAK
  1335. case 100:
  1336. # line 157 "lex.l"
  1337. { yylval.name = new rcString(yytext);
  1338.                 return tNAME; 
  1339.                   }
  1340.     YY_BREAK
  1341. case 101:
  1342. # line 161 "lex.l"
  1343. { rcString str(yytext);
  1344.          yylval.value = new Value(str(1, str.length()-1));
  1345.                  return tVALUE;
  1346.                }
  1347.     YY_BREAK
  1348. case 102:
  1349. # line 167 "lex.l"
  1350. case 103:
  1351. # line 168 "lex.l"
  1352. case 104:
  1353. # line 168 "lex.l"
  1354. {
  1355.                  yylval.value = new Value(atof(yytext));
  1356.                  return tVALUE;
  1357.            }
  1358.     YY_BREAK
  1359. case 105:
  1360. # line 173 "lex.l"
  1361. ;
  1362.     YY_BREAK
  1363. case 106:
  1364. # line 175 "lex.l"
  1365. lineno++;
  1366.     YY_BREAK
  1367. case 107:
  1368. # line 177 "lex.l"
  1369. { // eat the bad characters 
  1370.                 cerr << "[WARNING] : '" << *yytext 
  1371.              << "' is a bad character found at line "
  1372.                      << lineno << "\n";
  1373.               }
  1374.     YY_BREAK
  1375. case 108:
  1376. # line 184 "lex.l"
  1377. BEGIN(0);
  1378.     YY_BREAK
  1379. case 109:
  1380. # line 185 "lex.l"
  1381. {
  1382.                         yyerror("Found '/*' while looking for '*/'");
  1383.                         BEGIN(0);
  1384.                       }
  1385.     YY_BREAK
  1386. case 110:
  1387. # line 189 "lex.l"
  1388. lineno++;
  1389.     YY_BREAK
  1390. case 111:
  1391. # line 190 "lex.l"
  1392. ;
  1393.     YY_BREAK
  1394. case YY_STATE_EOF(C_COMMENT):
  1395. # line 191 "lex.l"
  1396. {
  1397.                         yyerror("EOF while looking for '*/'");
  1398.                         BEGIN(0);
  1399.                       }
  1400.     YY_BREAK
  1401. case 113:
  1402. # line 196 "lex.l"
  1403. {
  1404.                         lineno++;
  1405.                         BEGIN(0);
  1406.               }
  1407.     YY_BREAK
  1408. case 114:
  1409. # line 200 "lex.l"
  1410. ;
  1411.     YY_BREAK
  1412. case YY_STATE_EOF(CPP_COMMENT):
  1413. # line 201 "lex.l"
  1414. {
  1415.                         yyerror("Unexpected EOF");
  1416.                         BEGIN(0);
  1417.                       }
  1418.     YY_BREAK
  1419. case 116:
  1420. # line 205 "lex.l"
  1421. ECHO;
  1422.     YY_BREAK
  1423.         case YY_STATE_EOF(INITIAL):
  1424.         case YY_STATE_EOF(EXTFILE):
  1425.         yyterminate();
  1426.  
  1427.         case YY_END_OF_BUFFER:
  1428.         {
  1429.         /* amount of text matched not including the EOB char */
  1430.         int yy_amount_of_matched_text = yy_cp - yytext - 1;
  1431.  
  1432.         /* undo the effects of YY_DO_BEFORE_ACTION */
  1433.         *yy_cp = yy_hold_char;
  1434.  
  1435.         /* note that here we test for yy_c_buf_p "<=" to the position
  1436.          * of the first EOB in the buffer, since yy_c_buf_p will
  1437.          * already have been incremented past the NUL character
  1438.          * (since all states make transitions on EOB to the end-
  1439.          * of-buffer state).  Contrast this with the test in yyinput().
  1440.          */
  1441.         if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  1442.             /* this was really a NUL */
  1443.             {
  1444.             yy_state_type yy_next_state;
  1445.  
  1446.             yy_c_buf_p = yytext + yy_amount_of_matched_text;
  1447.  
  1448.             yy_current_state = yy_get_previous_state();
  1449.  
  1450.             /* okay, we're now positioned to make the
  1451.              * NUL transition.  We couldn't have
  1452.              * yy_get_previous_state() go ahead and do it
  1453.              * for us because it doesn't know how to deal
  1454.              * with the possibility of jamming (and we
  1455.              * don't want to build jamming into it because
  1456.              * then it will run more slowly)
  1457.              */
  1458.  
  1459.             yy_next_state = yy_try_NUL_trans( yy_current_state );
  1460.  
  1461.             yy_bp = yytext + YY_MORE_ADJ;
  1462.  
  1463.             if ( yy_next_state )
  1464.             {
  1465.             /* consume the NUL */
  1466.             yy_cp = ++yy_c_buf_p;
  1467.             yy_current_state = yy_next_state;
  1468.             goto yy_match;
  1469.             }
  1470.  
  1471.             else
  1472.             {
  1473.             goto yy_find_action;
  1474.             }
  1475.             }
  1476.  
  1477.         else switch ( yy_get_next_buffer() )
  1478.             {
  1479.             case EOB_ACT_END_OF_FILE:
  1480.             {
  1481.             yy_did_buffer_switch_on_eof = 0;
  1482.  
  1483.             if ( yywrap() )
  1484.                 {
  1485.                 /* note: because we've taken care in
  1486.                  * yy_get_next_buffer() to have set up yytext,
  1487.                  * we can now set up yy_c_buf_p so that if some
  1488.                  * total hoser (like flex itself) wants
  1489.                  * to call the scanner after we return the
  1490.                  * YY_NULL, it'll still work - another YY_NULL
  1491.                  * will get returned.
  1492.                  */
  1493.                 yy_c_buf_p = yytext + YY_MORE_ADJ;
  1494.  
  1495.                 yy_act = YY_STATE_EOF((yy_start - 1) / 2);
  1496.                 goto do_action;
  1497.                 }
  1498.  
  1499.             else
  1500.                 {
  1501.                 if ( ! yy_did_buffer_switch_on_eof )
  1502.                 YY_NEW_FILE;
  1503.                 }
  1504.             }
  1505.             break;
  1506.  
  1507.             case EOB_ACT_CONTINUE_SCAN:
  1508.             yy_c_buf_p = yytext + yy_amount_of_matched_text;
  1509.  
  1510.             yy_current_state = yy_get_previous_state();
  1511.  
  1512.             yy_cp = yy_c_buf_p;
  1513.             yy_bp = yytext + YY_MORE_ADJ;
  1514.             goto yy_match;
  1515.  
  1516.             case EOB_ACT_LAST_MATCH:
  1517.             yy_c_buf_p =
  1518.                 &yy_current_buffer->yy_ch_buf[yy_n_chars];
  1519.  
  1520.             yy_current_state = yy_get_previous_state();
  1521.  
  1522.             yy_cp = yy_c_buf_p;
  1523.             yy_bp = yytext + YY_MORE_ADJ;
  1524.             goto yy_find_action;
  1525.             }
  1526.         break;
  1527.         }
  1528.  
  1529.         default:
  1530. #ifdef FLEX_DEBUG
  1531.         printf( "action # %d\n", yy_act );
  1532. #endif
  1533.         YY_FATAL_ERROR(
  1534.             "fatal flex scanner internal error--no action found" );
  1535.         }
  1536.     }
  1537.     }
  1538.  
  1539.  
  1540. /* yy_get_next_buffer - try to read in a new buffer
  1541.  *
  1542.  * synopsis
  1543.  *     int yy_get_next_buffer();
  1544.  *     
  1545.  * returns a code representing an action
  1546.  *     EOB_ACT_LAST_MATCH - 
  1547.  *     EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  1548.  *     EOB_ACT_END_OF_FILE - end of file
  1549.  */
  1550.  
  1551. static int yy_get_next_buffer()
  1552.  
  1553.     {
  1554.     register YY_CHAR *dest = yy_current_buffer->yy_ch_buf;
  1555.     register YY_CHAR *source = yytext - 1; /* copy prev. char, too */
  1556.     register int number_to_move, i;
  1557.     int ret_val;
  1558.  
  1559.     if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
  1560.     YY_FATAL_ERROR(
  1561.         "fatal flex scanner internal error--end of buffer missed" );
  1562.  
  1563.     /* try to read more data */
  1564.  
  1565.     /* first move last chars to start of buffer */
  1566.     number_to_move = yy_c_buf_p - yytext;
  1567.  
  1568.     for ( i = 0; i < number_to_move; ++i )
  1569.     *(dest++) = *(source++);
  1570.  
  1571.     if ( yy_current_buffer->yy_eof_status != EOF_NOT_SEEN )
  1572.     /* don't do the read, it's not guaranteed to return an EOF,
  1573.      * just force an EOF
  1574.      */
  1575.     yy_n_chars = 0;
  1576.  
  1577.     else
  1578.     {
  1579.     int num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1;
  1580.  
  1581.     if ( num_to_read > YY_READ_BUF_SIZE )
  1582.         num_to_read = YY_READ_BUF_SIZE;
  1583.  
  1584.     else if ( num_to_read <= 0 )
  1585.         YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" );
  1586.  
  1587.     /* read in more data */
  1588.     YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
  1589.           yy_n_chars, num_to_read );
  1590.     }
  1591.  
  1592.     if ( yy_n_chars == 0 )
  1593.     {
  1594.     if ( number_to_move == 1 )
  1595.         {
  1596.         ret_val = EOB_ACT_END_OF_FILE;
  1597.         yy_current_buffer->yy_eof_status = EOF_DONE;
  1598.         }
  1599.  
  1600.     else
  1601.         {
  1602.         ret_val = EOB_ACT_LAST_MATCH;
  1603.         yy_current_buffer->yy_eof_status = EOF_PENDING;
  1604.         }
  1605.     }
  1606.  
  1607.     else
  1608.     ret_val = EOB_ACT_CONTINUE_SCAN;
  1609.  
  1610.     yy_n_chars += number_to_move;
  1611.     yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
  1612.     yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
  1613.  
  1614.     /* yytext begins at the second character in yy_ch_buf; the first
  1615.      * character is the one which preceded it before reading in the latest
  1616.      * buffer; it needs to be kept around in case it's a newline, so
  1617.      * yy_get_previous_state() will have with '^' rules active
  1618.      */
  1619.  
  1620.     yytext = &yy_current_buffer->yy_ch_buf[1];
  1621.  
  1622.     return ( ret_val );
  1623.     }
  1624.  
  1625.  
  1626. /* yy_get_previous_state - get the state just before the EOB char was reached
  1627.  *
  1628.  * synopsis
  1629.  *     yy_state_type yy_get_previous_state();
  1630.  */
  1631.  
  1632. static yy_state_type yy_get_previous_state()
  1633.  
  1634.     {
  1635.     register yy_state_type yy_current_state;
  1636.     register YY_CHAR *yy_cp;
  1637.  
  1638.     register YY_CHAR *yy_bp = yytext;
  1639.  
  1640.     yy_current_state = yy_start;
  1641.     if ( yy_bp[-1] == '\n' )
  1642.     ++yy_current_state;
  1643.     yy_state_ptr = yy_state_buf;
  1644.     *yy_state_ptr++ = yy_current_state;
  1645.  
  1646.     for ( yy_cp = yytext + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
  1647.     {
  1648.     register YY_CHAR yy_c = (*yy_cp ? yy_ec[*yy_cp] : 1);
  1649.     while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1650.         {
  1651.         yy_current_state = yy_def[yy_current_state];
  1652.         if ( yy_current_state >= 311 )
  1653.         yy_c = yy_meta[yy_c];
  1654.         }
  1655.     yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  1656.     *yy_state_ptr++ = yy_current_state;
  1657.     }
  1658.  
  1659.     return ( yy_current_state );
  1660.     }
  1661.  
  1662.  
  1663. /* yy_try_NUL_trans - try to make a transition on the NUL character
  1664.  *
  1665.  * synopsis
  1666.  *     next_state = yy_try_NUL_trans( current_state );
  1667.  */
  1668.  
  1669. #ifdef YY_USE_PROTOS
  1670. static yy_state_type yy_try_NUL_trans( register yy_state_type yy_current_state )
  1671. #else
  1672. static yy_state_type yy_try_NUL_trans( yy_current_state )
  1673. register yy_state_type yy_current_state;
  1674. #endif
  1675.  
  1676.     {
  1677.     register int yy_is_jam;
  1678.  
  1679.     register YY_CHAR yy_c = 1;
  1680.     while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1681.     {
  1682.     yy_current_state = yy_def[yy_current_state];
  1683.     if ( yy_current_state >= 311 )
  1684.         yy_c = yy_meta[yy_c];
  1685.     }
  1686.     yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  1687.     *yy_state_ptr++ = yy_current_state;
  1688.     yy_is_jam = (yy_current_state == 310);
  1689.  
  1690.     return ( yy_is_jam ? 0 : yy_current_state );
  1691.     }
  1692.  
  1693.  
  1694. #ifdef YY_USE_PROTOS
  1695. static void yyunput( YY_CHAR c, register YY_CHAR *yy_bp )
  1696. #else
  1697. static void yyunput( c, yy_bp )
  1698. YY_CHAR c;
  1699. register YY_CHAR *yy_bp;
  1700. #endif
  1701.  
  1702.     {
  1703.     register YY_CHAR *yy_cp = yy_c_buf_p;
  1704.  
  1705.     /* undo effects of setting up yytext */
  1706.     *yy_cp = yy_hold_char;
  1707.  
  1708.     if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  1709.     { /* need to shift things up to make room */
  1710.     register int number_to_move = yy_n_chars + 2; /* +2 for EOB chars */
  1711.     register YY_CHAR *dest =
  1712.         &yy_current_buffer->yy_ch_buf[yy_current_buffer->yy_buf_size + 2];
  1713.     register YY_CHAR *source =
  1714.         &yy_current_buffer->yy_ch_buf[number_to_move];
  1715.  
  1716.     while ( source > yy_current_buffer->yy_ch_buf )
  1717.         *--dest = *--source;
  1718.  
  1719.     yy_cp += dest - source;
  1720.     yy_bp += dest - source;
  1721.     yy_n_chars = yy_current_buffer->yy_buf_size;
  1722.  
  1723.     if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  1724.         YY_FATAL_ERROR( "flex scanner push-back overflow" );
  1725.     }
  1726.  
  1727.     if ( yy_cp > yy_bp && yy_cp[-1] == '\n' )
  1728.     yy_cp[-2] = '\n';
  1729.  
  1730.     *--yy_cp = c;
  1731.  
  1732.     /* note: the formal parameter *must* be called "yy_bp" for this
  1733.      *       macro to now work correctly
  1734.      */
  1735.     YY_DO_BEFORE_ACTION; /* set up yytext again */
  1736.     }
  1737.  
  1738.  
  1739. #ifdef __cplusplus
  1740. static int yyinput()
  1741. #else
  1742. static int input()
  1743. #endif
  1744.  
  1745.     {
  1746.     int c;
  1747.     YY_CHAR *yy_cp = yy_c_buf_p;
  1748.  
  1749.     *yy_cp = yy_hold_char;
  1750.  
  1751.     if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
  1752.     {
  1753.     /* yy_c_buf_p now points to the character we want to return.
  1754.      * If this occurs *before* the EOB characters, then it's a
  1755.      * valid NUL; if not, then we've hit the end of the buffer.
  1756.      */
  1757.     if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  1758.         /* this was really a NUL */
  1759.         *yy_c_buf_p = '\0';
  1760.  
  1761.     else
  1762.         { /* need more input */
  1763.         yytext = yy_c_buf_p;
  1764.         ++yy_c_buf_p;
  1765.  
  1766.         switch ( yy_get_next_buffer() )
  1767.         {
  1768.         case EOB_ACT_END_OF_FILE:
  1769.             {
  1770.             if ( yywrap() )
  1771.             {
  1772.             yy_c_buf_p = yytext + YY_MORE_ADJ;
  1773.             return ( EOF );
  1774.             }
  1775.  
  1776.             YY_NEW_FILE;
  1777.  
  1778. #ifdef __cplusplus
  1779.             return ( yyinput() );
  1780. #else
  1781.             return ( input() );
  1782. #endif
  1783.             }
  1784.             break;
  1785.  
  1786.         case EOB_ACT_CONTINUE_SCAN:
  1787.             yy_c_buf_p = yytext + YY_MORE_ADJ;
  1788.             break;
  1789.  
  1790.         case EOB_ACT_LAST_MATCH:
  1791. #ifdef __cplusplus
  1792.             YY_FATAL_ERROR( "unexpected last match in yyinput()" );
  1793. #else
  1794.             YY_FATAL_ERROR( "unexpected last match in input()" );
  1795. #endif
  1796.         }
  1797.         }
  1798.     }
  1799.  
  1800.     c = *yy_c_buf_p;
  1801.     yy_hold_char = *++yy_c_buf_p;
  1802.  
  1803.     return ( c );
  1804.     }
  1805.  
  1806.  
  1807. #ifdef YY_USE_PROTOS
  1808. void yyrestart( FILE *input_file )
  1809. #else
  1810. void yyrestart( input_file )
  1811. FILE *input_file;
  1812. #endif
  1813.  
  1814.     {
  1815.     yy_init_buffer( yy_current_buffer, input_file );
  1816.     yy_load_buffer_state();
  1817.     }
  1818.  
  1819.  
  1820. #ifdef YY_USE_PROTOS
  1821. void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
  1822. #else
  1823. void yy_switch_to_buffer( new_buffer )
  1824. YY_BUFFER_STATE new_buffer;
  1825. #endif
  1826.  
  1827.     {
  1828.     if ( yy_current_buffer == new_buffer )
  1829.     return;
  1830.  
  1831.     if ( yy_current_buffer )
  1832.     {
  1833.     /* flush out information for old buffer */
  1834.     *yy_c_buf_p = yy_hold_char;
  1835.     yy_current_buffer->yy_buf_pos = yy_c_buf_p;
  1836.     yy_current_buffer->yy_n_chars = yy_n_chars;
  1837.     }
  1838.  
  1839.     yy_current_buffer = new_buffer;
  1840.     yy_load_buffer_state();
  1841.  
  1842.     /* we don't actually know whether we did this switch during
  1843.      * EOF (yywrap()) processing, but the only time this flag
  1844.      * is looked at is after yywrap() is called, so it's safe
  1845.      * to go ahead and always set it.
  1846.      */
  1847.     yy_did_buffer_switch_on_eof = 1;
  1848.     }
  1849.  
  1850.  
  1851. #ifdef YY_USE_PROTOS
  1852. void yy_load_buffer_state( void )
  1853. #else
  1854. void yy_load_buffer_state()
  1855. #endif
  1856.  
  1857.     {
  1858.     yy_n_chars = yy_current_buffer->yy_n_chars;
  1859.     yytext = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
  1860.     yyin = yy_current_buffer->yy_input_file;
  1861.     yy_hold_char = *yy_c_buf_p;
  1862.     }
  1863.  
  1864.  
  1865. #ifdef YY_USE_PROTOS
  1866. YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
  1867. #else
  1868. YY_BUFFER_STATE yy_create_buffer( file, size )
  1869. FILE *file;
  1870. int size;
  1871. #endif
  1872.  
  1873.     {
  1874.     YY_BUFFER_STATE b;
  1875.  
  1876.     b = (YY_BUFFER_STATE) malloc( sizeof( struct yy_buffer_state ) );
  1877.  
  1878.     if ( ! b )
  1879.     YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  1880.  
  1881.     b->yy_buf_size = size;
  1882.  
  1883.     /* yy_ch_buf has to be 2 characters longer than the size given because
  1884.      * we need to put in 2 end-of-buffer characters.
  1885.      */
  1886.     b->yy_ch_buf = (YY_CHAR *) malloc( (unsigned) (b->yy_buf_size + 2) );
  1887.  
  1888.     if ( ! b->yy_ch_buf )
  1889.     YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  1890.  
  1891.     yy_init_buffer( b, file );
  1892.  
  1893.     return ( b );
  1894.     }
  1895.  
  1896.  
  1897. #ifdef YY_USE_PROTOS
  1898. void yy_delete_buffer( YY_BUFFER_STATE b )
  1899. #else
  1900. void yy_delete_buffer( b )
  1901. YY_BUFFER_STATE b;
  1902. #endif
  1903.  
  1904.     {
  1905.     if ( b == yy_current_buffer )
  1906.     yy_current_buffer = (YY_BUFFER_STATE) 0;
  1907.  
  1908.     free( (char *) b->yy_ch_buf );
  1909.     free( (char *) b );
  1910.     }
  1911.  
  1912.  
  1913. #ifdef YY_USE_PROTOS
  1914. void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
  1915. #else
  1916. void yy_init_buffer( b, file )
  1917. YY_BUFFER_STATE b;
  1918. FILE *file;
  1919. #endif
  1920.  
  1921.     {
  1922.     b->yy_input_file = file;
  1923.  
  1924.     /* we put in the '\n' and start reading from [1] so that an
  1925.      * initial match-at-newline will be true.
  1926.      */
  1927.  
  1928.     b->yy_ch_buf[0] = '\n';
  1929.     b->yy_n_chars = 1;
  1930.  
  1931.     /* we always need two end-of-buffer characters.  The first causes
  1932.      * a transition to the end-of-buffer state.  The second causes
  1933.      * a jam in that state.
  1934.      */
  1935.     b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
  1936.     b->yy_ch_buf[2] = YY_END_OF_BUFFER_CHAR;
  1937.  
  1938.     b->yy_buf_pos = &b->yy_ch_buf[1];
  1939.  
  1940.     b->yy_eof_status = EOF_NOT_SEEN;
  1941.     }
  1942. # line 205 "lex.l"
  1943.  
  1944.